home *** CD-ROM | disk | FTP | other *** search
/ Science Kit & Boreal Lab…Order Assistant Plus 2001 / 2001 Order Assis.iso / pc / Fun Stuff / PC / BioQuiz.exe / scripts / DefineButton2_79 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2000-12-11  |  383 b   |  22 lines

  1. on(release){
  2.    _visible = "0";
  3.    call("/Library/:DisplayQuestion");
  4.    if(eval("/:CurrentQuestion") == "5")
  5.    {
  6.       if(eval("/:CorrectCount") == "4")
  7.       {
  8.          tellTarget("/LevelScreens")
  9.          {
  10.             play();
  11.          }
  12.       }
  13.       else
  14.       {
  15.          tellTarget("/RetryScreen")
  16.          {
  17.             play();
  18.          }
  19.       }
  20.    }
  21. }
  22.